Import standard modules:

In [1]:
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
from IPython.display import HTML 
HTML('../style/course.css') #apply general CSS
Out[1]:

Import section specific modules:

In [2]:
from IPython.display import HTML
HTML('../style/code_toggle.html')
Out[2]:
The raw code for this notebook is by default hidden for easier reading. To toggle on/off the raw code, click here.

3.3 Horizontal Coordinates (ALT,AZ)

In $\S$ 3.2.1 ➞ we introduced the concept of an hour angle, which allows us to determine the time that still needs to elapse before a source crosses the local meridian. This however does not tell us where we should point a telescope on earth inorder to observe a source with a specific hour angle. The horizontal coordinates azimuth $\mathcal{A}$ and altitude $\mathcal{E}$ (elevation) is used to enable an observer on earth to locate celestial objects in the observer's local sky. The observer's horizontal plane is the fundamental plane of this coordinate system and is known as the celestial horizon. The azimuth angle is measured in the celestial horizon from due north towards the east, while the altitude of a celestial object is the angle between it and the celestial horizon. Both azimuth and elevation is measured in degrees. The azimuth and elevation angle is depicted in Fig. 3.3.1 ⤵

Figure 3.3.1: The horizontal coordinates.

The equations below allow us to convert between equatorial and horizontal coordinates

Converting between equatorial and horizontal

\begin{eqnarray} \cos\delta\cos H &=& \cos L_a\sin \mathcal{E} - \sin L_a\cos \mathcal{E}\cos \mathcal{A}\\ -\cos\delta\sin H&=& \cos \mathcal{E}\sin \mathcal{A}\\ \sin\delta &=& \sin L_a\sin \mathcal{E}+\cos L_a \cos \mathcal{E} \cos \mathcal{A} \end{eqnarray}

Note: In the conversion equations above $L_a$ denotes latitude (see $\S$ 3.1 ➞).

The above equations were derived by applying the spherical trigonometric identities in $\S$ 2.13 ➞ to the triangle $\Delta PSZ$ which is depicted in Fig. 3.3.2 ⤵ (see Appendix ➞).

Figure 3.3.2: The source-celestial pole-zenith triangle; which enables us to derive the conversion equations between horizontal and equatorial coordinates. The red plane represents the fundamental plane of the horizontal coordinate system, while the blue plane represents the fundamental plane of the celestial coordinate system.

Note: The parallactic angle $q$ associated with a specific location on the celestial sphere $S$ is the angle between two great circles; the hour circle of $S$ and the great circle that passes through zenith and $S$. The parallactic angle $q$ is depicted in Fig. 3.3.2 ⤵. The parallactic angle, and how it pertains to radio interferometry is discussed in more detail in $\S$ 7.7 ➞.